home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-Sensation: Golden Games / Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso / Adventurer's / Zorkmachine / LMkFile < prev    next >
Text File  |  1992-04-30  |  388b  |  19 lines

  1. .c.o:
  2.     LC $(CFLAGS) $*.c
  3.  
  4. .asm.o:
  5.     ASM -IASM: $*.asm
  6.  
  7. OBJS        = zmachine.o io.o code.o mem.o zbios.o console.o getopt.o wb.o sound.o
  8. LIBS        = LIB:lc.lib LIB:amiga2.0.lib
  9.  
  10. CFLAGS        = -DAMIGA -cmiqws -b1 -r1 -v -mt0
  11. LFLAGS        = SC SD ND DEFINE __main=__tinymain
  12.  
  13. all:        ZorkMachine
  14.  
  15. console.o:    console.c ZorkMachine.h
  16.  
  17. ZorkMachine:    $(OBJS)
  18.         BLINK FROM LIB:c.o $(OBJS) TO $@ LIB $(LIBS) $(LFLAGS)
  19.